home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 22 / 4 / DISK2247.ZIP / FILE2247.TXT < prev    next >
Text File  |  1991-03-14  |  3KB  |  41 lines

  1. Disk No: 2247                                                           
  2. Disk Title: CBASE: The C Database Library                               
  3. PC-SIG Version: S1.01                                                   
  4.                                                                         
  5. Program Title: CBase:  The C Database Library                           
  6. Author Version: 1.0.1                                                   
  7. Author Registration: $77.00                                             
  8. Special Requirements: None.                                             
  9.                                                                         
  10. This is a C database file management library.  Records may be accessed  
  11. both randomly and sequentially through indexes stored in B+-trees.      
  12. Records may also be accessed sequentially in the order in which they    
  13. are stored.  Multiuser access is supported under any operating system   
  14. with file locking capabilities.                                         
  15.                                                                         
  16. Designed to be extremely portable, it's written in strict adherence to  
  17. the ANSI C standard and can still be used with the K&R C compilers. All 
  18. system dependent code is isolated to make it easy to port to new        
  19. operating systems.                                                      
  20.                                                                         
  21. CBASE is actually made up of four individual libraries, each complete   
  22. and independently accessible.  At its foundation is the block buffered  
  23. I/O library which models a file as a collection of blocks made up of    
  24. fields.  The linked sequential file library provides all the            
  25. facilities necessary for the creation and manipulation of doubly-       
  26. linked sequential files.  The btree library provides the same for B+-   
  27. tree files.  The program's library uses the linked sequential file and  
  28. btree libraries to perform all structured file management               
  29. operations. The linked sequential library is used for record storage    
  30. and the btree library is used for inverted file key storage.  Database  
  31. size is limited only by available disk storage.                         
  32.                                                                         
  33. CBASE comes complete with all source code, and a demo database is       
  34. included to demonstrate its capabilities.                               
  35.                                                                         
  36. PC-SIG                                                                  
  37. 1030D East Duane Avenue                                                 
  38. Sunnyvale  Ca. 94086                                                    
  39. (408) 730-9291                                                          
  40. (c) Copyright 1989 PC-SIG, Inc.                                         
  41.